home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJSRC111.ZIP / go32 / graphics.h < prev    next >
Text File  |  1993-08-12  |  1KB  |  45 lines

  1. /* This is file GRAPHICS.H */
  2. /*
  3. ** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
  4. **
  5. ** This file is distributed under the terms listed in the document
  6. ** "copying.dj", available from DJ Delorie at the address above.
  7. ** A copy of "copying.dj" should accompany this file; if not, a copy
  8. ** should be available from where this file was obtained.  This file
  9. ** may not be distributed without a verbatim copy of "copying.dj".
  10. **
  11. ** This file is distributed WITHOUT ANY WARRANTY; without even the implied
  12. ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. */
  14.  
  15. #ifndef _GRAPHICS_H_
  16. #define _GRAPHICS_H_
  17.  
  18. extern void setup_graphics_driver(char *drv_name);
  19. extern void graphics_assist(void);
  20.  
  21. extern int gr_def_tw;
  22. extern int gr_def_th;
  23. extern int gr_def_gw;
  24. extern int gr_def_gh;
  25. extern int gr_def_numcolor;
  26.  
  27. extern word16 gr_assist_func_start;
  28.  
  29. extern word32 far *graphics_pt1;
  30. extern word32 far *graphics_pt2;
  31. extern word32 graphics_pt1_lin;
  32. extern word32 graphics_pt2_lin;
  33.  
  34. extern word32 far *graphics_pd;
  35. extern word8  far *graphics_pd_seg;
  36. extern word32 graphics_pd_lin;
  37. extern word32 graphics_pd_seg_lin;
  38.  
  39. extern word16 graphics_pt1_loc;
  40. extern word16 graphics_pt2_loc;
  41.  
  42. #define graphics_pt graphics_pt1;
  43.  
  44. #endif
  45.